C# |
---|
public static Byte[] TextToBytes(String text) |
C# |
---|
using LJCNetCommon; // Creates a byte array from text. private static void TextToBytes() { // Setup string text = "Text"; // Creates a byte array from text. byte[] bytes = NetCommon.TextToBytes(text); // Check the text. text = NetCommon.BytesToText(bytes); } |